home *** CD-ROM | disk | FTP | other *** search
/ Champak 49 / Volume 49 - JOGO DISK .iso / Games / extremeracing2.swf / scripts / DefineSprite_145 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-10-01  |  236 b   |  18 lines

  1. x = Math.round(Math.random() * 10);
  2. onEnterFrame = function()
  3. {
  4.    if(_root.gameOver == "no")
  5.    {
  6.       x++;
  7.       if(x > 2)
  8.       {
  9.          play();
  10.       }
  11.       else
  12.       {
  13.          stop();
  14.       }
  15.    }
  16. };
  17. stop();
  18.